home *** CD-ROM | disk | FTP | other *** search
- #include <string.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include "patchlvl.h"
- #include "amidate.h"
-
- main()
- {
-
- printf("#define AMIVERSION \"$VER: SOX");
-
- #ifdef AMIGA_MC68020
- printf("020");
- #endif
-
- #ifdef AMIGA_MC68881
- printf("881");
- #endif
-
- printf(" pl %d (%s)\"\n", PATCHLEVEL, AMIDATE);
-
- exit(0);
- }
-